home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Documents / JAVA Programming / examples / 09 / indexOfDemo.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-09-08  |  1.3 KB  |  15 lines

  1. class indexOfDemo {
  2.    public static void main(String[] var0) {
  3.       String var1 = "Now is the time for all good men to come to the aid of their country and pay their due taxes.";
  4.       System.out.println(var1);
  5.       System.out.println("indexOf(t) = " + var1.indexOf("t"));
  6.       System.out.println("lastIndexOf(t) = " + var1.lastIndexOf("t"));
  7.       System.out.println("indexOf(the) = " + var1.indexOf("the"));
  8.       System.out.println("lastIndexOf(the) = " + var1.lastIndexOf("the"));
  9.       System.out.println("indexOf(t, 10) = " + var1.indexOf("t", 10));
  10.       System.out.println("lastIndexOf(t, 50) = " + var1.lastIndexOf("t", 50));
  11.       System.out.println("indexOf(the, 10) = " + var1.indexOf("the", 10));
  12.       System.out.println("lastIndexOf(the, 50) = " + var1.lastIndexOf("the", 50));
  13.    }
  14. }
  15.